home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 May: Tool Chest / Developer CD Series Tool Chest (Apple Computer)(May 1999).iso / Tool Chest / Development Kits / MPW etc / MPW-PR / MPW / Scripts / UnaliasSourceServer < prev   
Encoding:
Text File  |  1998-04-24  |  2.1 KB  |  56 lines  |  [TEXT/MPS ]

  1. #    File:    UnaliasSourceServer
  2. #
  3. #    Copyright Apple Computer, Inc. 1991-98
  4. #    All rights reserved.
  5. #
  6. #
  7. #        Scripts that have Projector commands within them can normally not be 
  8. #    executed by ToolServer. Using SourceServer, the RProj command, and three support
  9. #    scripts (AliasSourceServer, UnaliasSourceServer, and Directory2), ToolServer
  10. #    can perform Projector functions. SourceServer must be running on the same
  11. #    computer as ToolServer before the Projector scripts can be executed.
  12. #    Individual Projector command lines are sent from ToolServer to SourceServer
  13. #    via AppleEvents by the RProj command. To allow RProj to automatically be invoked
  14. #    any time a Projector command is encountered, we use the AliasSourceServer
  15. #    script to alias each ProjectorCommand to "RProj ProjectorCommand". To make
  16. #    sure that the aliases remain in effect even after the AliasSourceServer script
  17. #    has finished running, we must use the command line, "Execute AliasSourceServer".
  18. #    Directory commands also need to be aliased to Directory2, which will keep the
  19. #    current directory of both ToolServer and SourceServer set to the same location
  20. #    so both Projector and non-Projector commands operate on the same set of files.
  21. #    This alias is also established by the AliasSourceServer script. Finally, after
  22. #    completion of the Projector commands, "Execute UnaliasSourceServer" restores
  23. #    ToolServer to it's normal operation.
  24. #
  25. #        This file, UnaliasSourceServer, removes the aliases for ToolServer that
  26. #    were established by AliasSourceServer, thus returning ToolServer to normal
  27. #    operation.
  28.  
  29. Unalias AuthorInfo
  30. Unalias CheckIn
  31. Unalias CheckOut
  32. Unalias CheckOutDir
  33. Unalias CompareRevisions
  34. Unalias DeleteNames
  35. Unalias DeleteRevisions
  36. Unalias DuplicateNameRevisions
  37. Unalias LockNameRevisions
  38. Unalias MergeBranch
  39. Unalias ModifyReadOnly
  40. Unalias MountProject
  41. Unalias NameRevisions
  42. Unalias NewProject
  43. Unalias ObsoleteNameRevisions
  44. Unalias ObsoleteProjectorFile
  45. Unalias OrphanFiles
  46. Unalias Project
  47. Unalias ProjectInfo
  48. Unalias RenameProjectorFile
  49. Unalias TransferCkid
  50. Unalias UnlockNameRevisions
  51. Unalias UnmountProject
  52. Unalias UnobsoleteNameRevisions
  53. Unalias UnObsoleteProjectorFile
  54. Unalias UpdateProjectorDatabase
  55. Unalias Directory
  56.